home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue63 / Docking / DockedControls4U.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-09-13  |  800 b   |  42 lines

  1. unit DockedControls4U;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ComCtrls, ToolWin, StdCtrls, ImgList, ExtCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     ImageList1: TImageList;
  12.     Label1: TLabel;
  13.     Panel1: TPanel;
  14.     Image1: TImage;
  15.     ControlBar1: TControlBar;
  16.     ToolBar1: TToolBar;
  17.     ToolButton1: TToolButton;
  18.     ToolButton2: TToolButton;
  19.     ToolButton3: TToolButton;
  20.     ToolButton4: TToolButton;
  21.     ToolButton5: TToolButton;
  22.     procedure FormCreate(Sender: TObject);
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. var
  30.   Form1: TForm1;
  31.  
  32. implementation
  33.  
  34. {$R *.DFM}
  35.  
  36. procedure TForm1.FormCreate(Sender: TObject);
  37. begin
  38.   Mouse.DragImmediate := False
  39. end;
  40.  
  41. end.
  42.